home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / wndwc20.zip / EX1.C next >
Text File  |  1989-03-06  |  538b  |  18 lines

  1. /*   EXAMPLE 1:  Your first window
  2.      ----------------------------------------------------------------------*/
  3.      #include <stdio.h>
  4.      #include <conio.h>
  5.      #include <alloc.h>
  6.  
  7.      #include "wndwc20.h"
  8.  
  9.      void main()
  10.      {
  11.          qinit();
  12.          initwindow( LIGHTGRAY_BG, 1, 0 );  /* Initialize and clear window */
  13.          makewindow( 5, 20, 15, 40, WHITE+BLUE_BG, CYAN+BLUE_BG,
  14.                      SINGLE_BORDER, AWINDOW );
  15.          wwritec( 7, "Making windows is easy!" );
  16.          getch();
  17.      }
  18.